Note
Click here to download the full example code
DCGAN Tutorial¶
Author: Nathan Inkawhich
Introduction¶
This tutorial will give an introduction to DCGANs through an example. We will train a generative adversarial network (GAN) to generate new celebrities after showing it pictures of many real celebrities. Most of the code here is from the DCGAN implementation in pytorch/examples, and this document will give a thorough explanation of the implementation and shed light on how and why this model works. But don’t worry, no prior knowledge of GANs is required, but it may require a first-timer to spend some time reasoning about what is actually happening under the hood. Also, for the sake of time it will help to have a GPU, or two. Lets start from the beginning.
Generative Adversarial Networks¶
What is a GAN?¶
GANs are a framework for teaching a deep learning model to capture the training data distribution so we can generate new data from that same distribution. GANs were invented by Ian Goodfellow in 2014 and first described in the paper Generative Adversarial Nets. They are made of two distinct models, a generator and a discriminator. The job of the generator is to spawn ‘fake’ images that look like the training images. The job of the discriminator is to look at an image and output whether or not it is a real training image or a fake image from the generator. During training, the generator is constantly trying to outsmart the discriminator by generating better and better fakes, while the discriminator is working to become a better detective and correctly classify the real and fake images. The equilibrium of this game is when the generator is generating perfect fakes that look as if they came directly from the training data, and the discriminator is left to always guess at 50% confidence that the generator output is real or fake.
Now, lets define some notation to be used throughout tutorial starting with the discriminator. Let \(x\) be data representing an image. \(D(x)\) is the discriminator network which outputs the (scalar) probability that \(x\) came from training data rather than the generator. Here, since we are dealing with images, the input to \(D(x)\) is an image of CHW size 3x64x64. Intuitively, \(D(x)\) should be HIGH when \(x\) comes from training data and LOW when \(x\) comes from the generator. \(D(x)\) can also be thought of as a traditional binary classifier.
For the generator’s notation, let \(z\) be a latent space vector sampled from a standard normal distribution. \(G(z)\) represents the generator function which maps the latent vector \(z\) to data-space. The goal of \(G\) is to estimate the distribution that the training data comes from (\(p_{data}\)) so it can generate fake samples from that estimated distribution (\(p_g\)).
So, \(D(G(z))\) is the probability (scalar) that the output of the generator \(G\) is a real image. As described in Goodfellow’s paper, \(D\) and \(G\) play a minimax game in which \(D\) tries to maximize the probability it correctly classifies reals and fakes (\(logD(x)\)), and \(G\) tries to minimize the probability that \(D\) will predict its outputs are fake (\(log(1-D(G(z)))\)). From the paper, the GAN loss function is
In theory, the solution to this minimax game is where \(p_g = p_{data}\), and the discriminator guesses randomly if the inputs are real or fake. However, the convergence theory of GANs is still being actively researched and in reality models do not always train to this point.
What is a DCGAN?¶
A DCGAN is a direct extension of the GAN described above, except that it explicitly uses convolutional and convolutional-transpose layers in the discriminator and generator, respectively. It was first described by Radford et. al. in the paper Unsupervised Representation Learning With Deep Convolutional Generative Adversarial Networks. The discriminator is made up of strided convolution layers, batch norm layers, and LeakyReLU activations. The input is a 3x64x64 input image and the output is a scalar probability that the input is from the real data distribution. The generator is comprised of convolutional-transpose layers, batch norm layers, and ReLU activations. The input is a latent vector, \(z\), that is drawn from a standard normal distribution and the output is a 3x64x64 RGB image. The strided conv-transpose layers allow the latent vector to be transformed into a volume with the same shape as an image. In the paper, the authors also give some tips about how to setup the optimizers, how to calculate the loss functions, and how to initialize the model weights, all of which will be explained in the coming sections.
from __future__ import print_function
#%matplotlib inline
import argparse
import os
import random
import torch
import torch.nn as nn
import torch.nn.parallel
import torch.backends.cudnn as cudnn
import torch.optim as optim
import torch.utils.data
import torchvision.datasets as dset
import torchvision.transforms as transforms
import torchvision.utils as vutils
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from IPython.display import HTML
# Set random seed for reproducibility
manualSeed = 999
#manualSeed = random.randint(1, 10000) # use if you want new results
print("Random Seed: ", manualSeed)
random.seed(manualSeed)
torch.manual_seed(manualSeed)
Random Seed: 999
<torch._C.Generator object at 0x7f11165a0030>
Inputs¶
Let’s define some inputs for the run:
dataroot- the path to the root of the dataset folder. We will talk more about the dataset in the next section.workers- the number of worker threads for loading the data with theDataLoader.batch_size- the batch size used in training. The DCGAN paper uses a batch size of 128.image_size- the spatial size of the images used for training. This implementation defaults to 64x64. If another size is desired, the structures of D and G must be changed. See here for more details.nc- number of color channels in the input images. For color images this is 3.nz- length of latent vector.ngf- relates to the depth of feature maps carried through the generator.ndf- sets the depth of feature maps propagated through the discriminator.num_epochs- number of training epochs to run. Training for longer will probably lead to better results but will also take much longer.lr- learning rate for training. As described in the DCGAN paper, this number should be 0.0002.beta1- beta1 hyperparameter for Adam optimizers. As described in paper, this number should be 0.5.ngpu- number of GPUs available. If this is 0, code will run in CPU mode. If this number is greater than 0 it will run on that number of GPUs.
# Root directory for dataset
dataroot = "data/celeba"
# Number of workers for dataloader
workers = 2
# Batch size during training
batch_size = 128
# Spatial size of training images. All images will be resized to this
# size using a transformer.
image_size = 64
# Number of channels in the training images. For color images this is 3
nc = 3
# Size of z latent vector (i.e. size of generator input)
nz = 100
# Size of feature maps in generator
ngf = 64
# Size of feature maps in discriminator
ndf = 64
# Number of training epochs
num_epochs = 5
# Learning rate for optimizers
lr = 0.0002
# Beta1 hyperparameter for Adam optimizers
beta1 = 0.5
# Number of GPUs available. Use 0 for CPU mode.
ngpu = 1
Data¶
In this tutorial we will use the Celeb-A Faces
dataset which can
be downloaded at the linked site, or in Google
Drive.
The dataset will download as a file named img_align_celeba.zip. Once
downloaded, create a directory named celeba and extract the zip file
into that directory. Then, set the dataroot input for this notebook to
the celeba directory you just created. The resulting directory
structure should be:
/path/to/celeba
-> img_align_celeba
-> 188242.jpg
-> 173822.jpg
-> 284702.jpg
-> 537394.jpg
...
This is an important step because we will be using the ImageFolder
dataset class, which requires there to be subdirectories in the
dataset root folder. Now, we can create the dataset, create the
dataloader, set the device to run on, and finally visualize some of the
training data.
# We can use an image folder dataset the way we have it setup.
# Create the dataset
dataset = dset.ImageFolder(root=dataroot,
transform=transforms.Compose([
transforms.Resize(image_size),
transforms.CenterCrop(image_size),
transforms.ToTensor(),
transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),
]))
# Create the dataloader
dataloader = torch.utils.data.DataLoader(dataset, batch_size=batch_size,
shuffle=True, num_workers=workers)
# Decide which device we want to run on
device = torch.device("cuda:0" if (torch.cuda.is_available() and ngpu > 0) else "cpu")
# Plot some training images
real_batch = next(iter(dataloader))
plt.figure(figsize=(8,8))
plt.axis("off")
plt.title("Training Images")
plt.imshow(np.transpose(vutils.make_grid(real_batch[0].to(device)[:64], padding=2, normalize=True).cpu(),(1,2,0)))

<matplotlib.image.AxesImage object at 0x7f110c3aa3b0>
Implementation¶
With our input parameters set and the dataset prepared, we can now get into the implementation. We will start with the weight initialization strategy, then talk about the generator, discriminator, loss functions, and training loop in detail.
Weight Initialization¶
From the DCGAN paper, the authors specify that all model weights shall
be randomly initialized from a Normal distribution with mean=0,
stdev=0.02. The weights_init function takes an initialized model as
input and reinitializes all convolutional, convolutional-transpose, and
batch normalization layers to meet this criteria. This function is
applied to the models immediately after initialization.
# custom weights initialization called on ``netG`` and ``netD``
def weights_init(m):
classname = m.__class__.__name__
if classname.find('Conv') != -1:
nn.init.normal_(m.weight.data, 0.0, 0.02)
elif classname.find('BatchNorm') != -1:
nn.init.normal_(m.weight.data, 1.0, 0.02)
nn.init.constant_(m.bias.data, 0)
Generator¶
The generator, \(G\), is designed to map the latent space vector (\(z\)) to data-space. Since our data are images, converting \(z\) to data-space means ultimately creating a RGB image with the same size as the training images (i.e. 3x64x64). In practice, this is accomplished through a series of strided two dimensional convolutional transpose layers, each paired with a 2d batch norm layer and a relu activation. The output of the generator is fed through a tanh function to return it to the input data range of \([-1,1]\). It is worth noting the existence of the batch norm functions after the conv-transpose layers, as this is a critical contribution of the DCGAN paper. These layers help with the flow of gradients during training. An image of the generator from the DCGAN paper is shown below.
Notice, how the inputs we set in the input section (nz, ngf, and
nc) influence the generator architecture in code. nz is the length
of the z input vector, ngf relates to the size of the feature maps
that are propagated through the generator, and nc is the number of
channels in the output image (set to 3 for RGB images). Below is the
code for the generator.
# Generator Code
class Generator(nn.Module):
def __init__(self, ngpu):
super(Generator, self).__init__()
self.ngpu = ngpu
self.main = nn.Sequential(
# input is Z, going into a convolution
nn.ConvTranspose2d( nz, ngf * 8, 4, 1, 0, bias=False),
nn.BatchNorm2d(ngf * 8),
nn.ReLU(True),
# state size. ``(ngf*8) x 4 x 4``
nn.ConvTranspose2d(ngf * 8, ngf * 4, 4, 2, 1, bias=False),
nn.BatchNorm2d(ngf * 4),
nn.ReLU(True),
# state size. ``(ngf*4) x 8 x 8``
nn.ConvTranspose2d( ngf * 4, ngf * 2, 4, 2, 1, bias=False),
nn.BatchNorm2d(ngf * 2),
nn.ReLU(True),
# state size. ``(ngf*2) x 16 x 16``
nn.ConvTranspose2d( ngf * 2, ngf, 4, 2, 1, bias=False),
nn.BatchNorm2d(ngf),
nn.ReLU(True),
# state size. ``(ngf) x 32 x 32``
nn.ConvTranspose2d( ngf, nc, 4, 2, 1, bias=False),
nn.Tanh()
# state size. ``(nc) x 64 x 64``
)
def forward(self, input):
return self.main(input)
Now, we can instantiate the generator and apply the weights_init
function. Check out the printed model to see how the generator object is
structured.
# Create the generator
netG = Generator(ngpu).to(device)
# Handle multi-GPU if desired
if (device.type == 'cuda') and (ngpu > 1):
netG = nn.DataParallel(netG, list(range(ngpu)))
# Apply the ``weights_init`` function to randomly initialize all weights
# to ``mean=0``, ``stdev=0.02``.
netG.apply(weights_init)
# Print the model
print(netG)
Generator(
(main): Sequential(
(0): ConvTranspose2d(100, 512, kernel_size=(4, 4), stride=(1, 1), bias=False)
(1): BatchNorm2d(512, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(2): ReLU(inplace=True)
(3): ConvTranspose2d(512, 256, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(4): BatchNorm2d(256, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): ReLU(inplace=True)
(6): ConvTranspose2d(256, 128, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(7): BatchNorm2d(128, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(8): ReLU(inplace=True)
(9): ConvTranspose2d(128, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(10): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(11): ReLU(inplace=True)
(12): ConvTranspose2d(64, 3, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(13): Tanh()
)
)
Discriminator¶
As mentioned, the discriminator, \(D\), is a binary classification network that takes an image as input and outputs a scalar probability that the input image is real (as opposed to fake). Here, \(D\) takes a 3x64x64 input image, processes it through a series of Conv2d, BatchNorm2d, and LeakyReLU layers, and outputs the final probability through a Sigmoid activation function. This architecture can be extended with more layers if necessary for the problem, but there is significance to the use of the strided convolution, BatchNorm, and LeakyReLUs. The DCGAN paper mentions it is a good practice to use strided convolution rather than pooling to downsample because it lets the network learn its own pooling function. Also batch norm and leaky relu functions promote healthy gradient flow which is critical for the learning process of both \(G\) and \(D\).
Discriminator Code
class Discriminator(nn.Module):
def __init__(self, ngpu):
super(Discriminator, self).__init__()
self.ngpu = ngpu
self.main = nn.Sequential(
# input is ``(nc) x 64 x 64``
nn.Conv2d(nc, ndf, 4, 2, 1, bias=False),
nn.LeakyReLU(0.2, inplace=True),
# state size. ``(ndf) x 32 x 32``
nn.Conv2d(ndf, ndf * 2, 4, 2, 1, bias=False),
nn.BatchNorm2d(ndf * 2),
nn.LeakyReLU(0.2, inplace=True),
# state size. ``(ndf*2) x 16 x 16``
nn.Conv2d(ndf * 2, ndf * 4, 4, 2, 1, bias=False),
nn.BatchNorm2d(ndf * 4),
nn.LeakyReLU(0.2, inplace=True),
# state size. ``(ndf*4) x 8 x 8``
nn.Conv2d(ndf * 4, ndf * 8, 4, 2, 1, bias=False),
nn.BatchNorm2d(ndf * 8),
nn.LeakyReLU(0.2, inplace=True),
# state size. ``(ndf*8) x 4 x 4``
nn.Conv2d(ndf * 8, 1, 4, 1, 0, bias=False),
nn.Sigmoid()
)
def forward(self, input):
return self.main(input)
Now, as with the generator, we can create the discriminator, apply the
weights_init function, and print the model’s structure.
# Create the Discriminator
netD = Discriminator(ngpu).to(device)
# Handle multi-GPU if desired
if (device.type == 'cuda') and (ngpu > 1):
netD = nn.DataParallel(netD, list(range(ngpu)))
# Apply the ``weights_init`` function to randomly initialize all weights
# like this: ``to mean=0, stdev=0.2``.
netD.apply(weights_init)
# Print the model
print(netD)
Discriminator(
(main): Sequential(
(0): Conv2d(3, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(1): LeakyReLU(negative_slope=0.2, inplace=True)
(2): Conv2d(64, 128, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(3): BatchNorm2d(128, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(4): LeakyReLU(negative_slope=0.2, inplace=True)
(5): Conv2d(128, 256, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(6): BatchNorm2d(256, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(7): LeakyReLU(negative_slope=0.2, inplace=True)
(8): Conv2d(256, 512, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(9): BatchNorm2d(512, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(10): LeakyReLU(negative_slope=0.2, inplace=True)
(11): Conv2d(512, 1, kernel_size=(4, 4), stride=(1, 1), bias=False)
(12): Sigmoid()
)
)
Loss Functions and Optimizers¶
With \(D\) and \(G\) setup, we can specify how they learn through the loss functions and optimizers. We will use the Binary Cross Entropy loss (BCELoss) function which is defined in PyTorch as:
Notice how this function provides the calculation of both log components in the objective function (i.e. \(log(D(x))\) and \(log(1-D(G(z)))\)). We can specify what part of the BCE equation to use with the \(y\) input. This is accomplished in the training loop which is coming up soon, but it is important to understand how we can choose which component we wish to calculate just by changing \(y\) (i.e. GT labels).
Next, we define our real label as 1 and the fake label as 0. These labels will be used when calculating the losses of \(D\) and \(G\), and this is also the convention used in the original GAN paper. Finally, we set up two separate optimizers, one for \(D\) and one for \(G\). As specified in the DCGAN paper, both are Adam optimizers with learning rate 0.0002 and Beta1 = 0.5. For keeping track of the generator’s learning progression, we will generate a fixed batch of latent vectors that are drawn from a Gaussian distribution (i.e. fixed_noise) . In the training loop, we will periodically input this fixed_noise into \(G\), and over the iterations we will see images form out of the noise.
# Initialize the ``BCELoss`` function
criterion = nn.BCELoss()
# Create batch of latent vectors that we will use to visualize
# the progression of the generator
fixed_noise = torch.randn(64, nz, 1, 1, device=device)
# Establish convention for real and fake labels during training
real_label = 1.
fake_label = 0.
# Setup Adam optimizers for both G and D
optimizerD = optim.Adam(netD.parameters(), lr=lr, betas=(beta1, 0.999))
optimizerG = optim.Adam(netG.parameters(), lr=lr, betas=(beta1, 0.999))
Training¶
Finally, now that we have all of the parts of the GAN framework defined, we can train it. Be mindful that training GANs is somewhat of an art form, as incorrect hyperparameter settings lead to mode collapse with little explanation of what went wrong. Here, we will closely follow Algorithm 1 from the Goodfellow’s paper, while abiding by some of the best practices shown in ganhacks. Namely, we will “construct different mini-batches for real and fake” images, and also adjust G’s objective function to maximize \(log(D(G(z)))\). Training is split up into two main parts. Part 1 updates the Discriminator and Part 2 updates the Generator.
Part 1 - Train the Discriminator
Recall, the goal of training the discriminator is to maximize the probability of correctly classifying a given input as real or fake. In terms of Goodfellow, we wish to “update the discriminator by ascending its stochastic gradient”. Practically, we want to maximize \(log(D(x)) + log(1-D(G(z)))\). Due to the separate mini-batch suggestion from ganhacks, we will calculate this in two steps. First, we will construct a batch of real samples from the training set, forward pass through \(D\), calculate the loss (\(log(D(x))\)), then calculate the gradients in a backward pass. Secondly, we will construct a batch of fake samples with the current generator, forward pass this batch through \(D\), calculate the loss (\(log(1-D(G(z)))\)), and accumulate the gradients with a backward pass. Now, with the gradients accumulated from both the all-real and all-fake batches, we call a step of the Discriminator’s optimizer.
Part 2 - Train the Generator
As stated in the original paper, we want to train the Generator by
minimizing \(log(1-D(G(z)))\) in an effort to generate better fakes.
As mentioned, this was shown by Goodfellow to not provide sufficient
gradients, especially early in the learning process. As a fix, we
instead wish to maximize \(log(D(G(z)))\). In the code we accomplish
this by: classifying the Generator output from Part 1 with the
Discriminator, computing G’s loss using real labels as GT, computing
G’s gradients in a backward pass, and finally updating G’s parameters
with an optimizer step. It may seem counter-intuitive to use the real
labels as GT labels for the loss function, but this allows us to use the
\(log(x)\) part of the BCELoss (rather than the \(log(1-x)\)
part) which is exactly what we want.
Finally, we will do some statistic reporting and at the end of each epoch we will push our fixed_noise batch through the generator to visually track the progress of G’s training. The training statistics reported are:
Loss_D - discriminator loss calculated as the sum of losses for the all real and all fake batches (\(log(D(x)) + log(1 - D(G(z)))\)).
Loss_G - generator loss calculated as \(log(D(G(z)))\)
D(x) - the average output (across the batch) of the discriminator for the all real batch. This should start close to 1 then theoretically converge to 0.5 when G gets better. Think about why this is.
D(G(z)) - average discriminator outputs for the all fake batch. The first number is before D is updated and the second number is after D is updated. These numbers should start near 0 and converge to 0.5 as G gets better. Think about why this is.
Note: This step might take a while, depending on how many epochs you run and if you removed some data from the dataset.
# Training Loop
# Lists to keep track of progress
img_list = []
G_losses = []
D_losses = []
iters = 0
print("Starting Training Loop...")
# For each epoch
for epoch in range(num_epochs):
# For each batch in the dataloader
for i, data in enumerate(dataloader, 0):
############################
# (1) Update D network: maximize log(D(x)) + log(1 - D(G(z)))
###########################
## Train with all-real batch
netD.zero_grad()
# Format batch
real_cpu = data[0].to(device)
b_size = real_cpu.size(0)
label = torch.full((b_size,), real_label, dtype=torch.float, device=device)
# Forward pass real batch through D
output = netD(real_cpu).view(-1)
# Calculate loss on all-real batch
errD_real = criterion(output, label)
# Calculate gradients for D in backward pass
errD_real.backward()
D_x = output.mean().item()
## Train with all-fake batch
# Generate batch of latent vectors
noise = torch.randn(b_size, nz, 1, 1, device=device)
# Generate fake image batch with G
fake = netG(noise)
label.fill_(fake_label)
# Classify all fake batch with D
output = netD(fake.detach()).view(-1)
# Calculate D's loss on the all-fake batch
errD_fake = criterion(output, label)
# Calculate the gradients for this batch, accumulated (summed) with previous gradients
errD_fake.backward()
D_G_z1 = output.mean().item()
# Compute error of D as sum over the fake and the real batches
errD = errD_real + errD_fake
# Update D
optimizerD.step()
############################
# (2) Update G network: maximize log(D(G(z)))
###########################
netG.zero_grad()
label.fill_(real_label) # fake labels are real for generator cost
# Since we just updated D, perform another forward pass of all-fake batch through D
output = netD(fake).view(-1)
# Calculate G's loss based on this output
errG = criterion(output, label)
# Calculate gradients for G
errG.backward()
D_G_z2 = output.mean().item()
# Update G
optimizerG.step()
# Output training stats
if i % 50 == 0:
print('[%d/%d][%d/%d]\tLoss_D: %.4f\tLoss_G: %.4f\tD(x): %.4f\tD(G(z)): %.4f / %.4f'
% (epoch, num_epochs, i, len(dataloader),
errD.item(), errG.item(), D_x, D_G_z1, D_G_z2))
# Save Losses for plotting later
G_losses.append(errG.item())
D_losses.append(errD.item())
# Check how the generator is doing by saving G's output on fixed_noise
if (iters % 500 == 0) or ((epoch == num_epochs-1) and (i == len(dataloader)-1)):
with torch.no_grad():
fake = netG(fixed_noise).detach().cpu()
img_list.append(vutils.make_grid(fake, padding=2, normalize=True))
iters += 1
Starting Training Loop...
[0/5][0/1583] Loss_D: 1.6264 Loss_G: 5.5241 D(x): 0.5733 D(G(z)): 0.5501 / 0.0065
[0/5][50/1583] Loss_D: 0.0354 Loss_G: 10.9873 D(x): 0.9730 D(G(z)): 0.0001 / 0.0001
[0/5][100/1583] Loss_D: 2.3350 Loss_G: 14.9140 D(x): 0.3623 D(G(z)): 0.0000 / 0.0000
[0/5][150/1583] Loss_D: 0.5778 Loss_G: 6.7701 D(x): 0.8711 D(G(z)): 0.2991 / 0.0032
[0/5][200/1583] Loss_D: 1.3673 Loss_G: 12.9904 D(x): 0.9802 D(G(z)): 0.6527 / 0.0000
[0/5][250/1583] Loss_D: 0.4464 Loss_G: 4.1277 D(x): 0.7981 D(G(z)): 0.0629 / 0.0475
[0/5][300/1583] Loss_D: 1.3322 Loss_G: 7.3395 D(x): 0.4490 D(G(z)): 0.0088 / 0.0066
[0/5][350/1583] Loss_D: 1.6300 Loss_G: 4.1204 D(x): 0.3438 D(G(z)): 0.0020 / 0.0756
[0/5][400/1583] Loss_D: 1.4163 Loss_G: 8.1308 D(x): 0.9145 D(G(z)): 0.6336 / 0.0016
[0/5][450/1583] Loss_D: 0.6275 Loss_G: 7.7285 D(x): 0.9469 D(G(z)): 0.3748 / 0.0015
[0/5][500/1583] Loss_D: 0.4943 Loss_G: 4.3700 D(x): 0.7792 D(G(z)): 0.1341 / 0.0233
[0/5][550/1583] Loss_D: 0.4725 Loss_G: 3.7239 D(x): 0.8289 D(G(z)): 0.1796 / 0.0400
[0/5][600/1583] Loss_D: 0.9549 Loss_G: 7.1980 D(x): 0.9410 D(G(z)): 0.5234 / 0.0020
[0/5][650/1583] Loss_D: 0.6713 Loss_G: 4.9517 D(x): 0.9153 D(G(z)): 0.3596 / 0.0196
[0/5][700/1583] Loss_D: 0.4164 Loss_G: 4.0417 D(x): 0.7896 D(G(z)): 0.0816 / 0.0293
[0/5][750/1583] Loss_D: 1.2364 Loss_G: 11.7877 D(x): 0.9338 D(G(z)): 0.5856 / 0.0001
[0/5][800/1583] Loss_D: 0.4797 Loss_G: 6.7160 D(x): 0.9058 D(G(z)): 0.2582 / 0.0025
[0/5][850/1583] Loss_D: 0.5298 Loss_G: 5.0878 D(x): 0.9075 D(G(z)): 0.2991 / 0.0141
[0/5][900/1583] Loss_D: 0.3411 Loss_G: 3.2229 D(x): 0.8539 D(G(z)): 0.1102 / 0.0678
[0/5][950/1583] Loss_D: 0.4360 Loss_G: 4.0195 D(x): 0.8125 D(G(z)): 0.1404 / 0.0366
[0/5][1000/1583] Loss_D: 0.6174 Loss_G: 7.0530 D(x): 0.9647 D(G(z)): 0.3799 / 0.0022
[0/5][1050/1583] Loss_D: 0.4126 Loss_G: 3.5925 D(x): 0.7558 D(G(z)): 0.0470 / 0.0493
[0/5][1100/1583] Loss_D: 0.7736 Loss_G: 2.3555 D(x): 0.6124 D(G(z)): 0.1107 / 0.1331
[0/5][1150/1583] Loss_D: 0.3702 Loss_G: 4.0403 D(x): 0.7679 D(G(z)): 0.0370 / 0.0324
[0/5][1200/1583] Loss_D: 0.2910 Loss_G: 4.5396 D(x): 0.9377 D(G(z)): 0.1794 / 0.0179
[0/5][1250/1583] Loss_D: 0.4633 Loss_G: 4.6082 D(x): 0.8882 D(G(z)): 0.2497 / 0.0148
[0/5][1300/1583] Loss_D: 1.3243 Loss_G: 2.5382 D(x): 0.4187 D(G(z)): 0.0082 / 0.1561
[0/5][1350/1583] Loss_D: 0.5066 Loss_G: 4.7716 D(x): 0.8266 D(G(z)): 0.2082 / 0.0181
[0/5][1400/1583] Loss_D: 0.3665 Loss_G: 4.0399 D(x): 0.9180 D(G(z)): 0.2043 / 0.0343
[0/5][1450/1583] Loss_D: 0.4681 Loss_G: 3.2845 D(x): 0.7809 D(G(z)): 0.1435 / 0.0629
[0/5][1500/1583] Loss_D: 0.3520 Loss_G: 4.3633 D(x): 0.8965 D(G(z)): 0.1821 / 0.0217
[0/5][1550/1583] Loss_D: 0.4546 Loss_G: 3.1752 D(x): 0.7737 D(G(z)): 0.1290 / 0.0688
[1/5][0/1583] Loss_D: 0.6193 Loss_G: 5.8657 D(x): 0.8881 D(G(z)): 0.3362 / 0.0049
[1/5][50/1583] Loss_D: 0.3630 Loss_G: 3.4631 D(x): 0.7842 D(G(z)): 0.0709 / 0.0489
[1/5][100/1583] Loss_D: 0.4840 Loss_G: 3.1756 D(x): 0.7223 D(G(z)): 0.0670 / 0.0797
[1/5][150/1583] Loss_D: 0.4681 Loss_G: 5.3674 D(x): 0.9296 D(G(z)): 0.2971 / 0.0083
[1/5][200/1583] Loss_D: 0.5441 Loss_G: 2.0858 D(x): 0.6680 D(G(z)): 0.0291 / 0.1852
[1/5][250/1583] Loss_D: 0.3072 Loss_G: 3.4247 D(x): 0.8233 D(G(z)): 0.0792 / 0.0522
[1/5][300/1583] Loss_D: 0.6786 Loss_G: 4.7654 D(x): 0.9208 D(G(z)): 0.3906 / 0.0141
[1/5][350/1583] Loss_D: 0.3300 Loss_G: 3.1542 D(x): 0.8213 D(G(z)): 0.0914 / 0.0726
[1/5][400/1583] Loss_D: 0.3483 Loss_G: 3.7958 D(x): 0.7820 D(G(z)): 0.0480 / 0.0499
[1/5][450/1583] Loss_D: 0.7504 Loss_G: 3.9193 D(x): 0.5778 D(G(z)): 0.0213 / 0.0460
[1/5][500/1583] Loss_D: 0.4357 Loss_G: 2.9158 D(x): 0.7590 D(G(z)): 0.0920 / 0.0878
[1/5][550/1583] Loss_D: 0.5245 Loss_G: 3.0102 D(x): 0.7283 D(G(z)): 0.1059 / 0.0767
[1/5][600/1583] Loss_D: 0.5184 Loss_G: 4.3421 D(x): 0.8876 D(G(z)): 0.2903 / 0.0215
[1/5][650/1583] Loss_D: 0.5869 Loss_G: 4.6749 D(x): 0.9265 D(G(z)): 0.3450 / 0.0174
[1/5][700/1583] Loss_D: 1.1270 Loss_G: 3.7665 D(x): 0.4301 D(G(z)): 0.0162 / 0.0589
[1/5][750/1583] Loss_D: 0.7144 Loss_G: 1.6004 D(x): 0.5828 D(G(z)): 0.0362 / 0.2596
[1/5][800/1583] Loss_D: 0.8148 Loss_G: 4.6529 D(x): 0.9519 D(G(z)): 0.4689 / 0.0225
[1/5][850/1583] Loss_D: 0.8388 Loss_G: 1.7614 D(x): 0.5648 D(G(z)): 0.0590 / 0.2346
[1/5][900/1583] Loss_D: 0.5430 Loss_G: 4.1805 D(x): 0.9272 D(G(z)): 0.3294 / 0.0268
[1/5][950/1583] Loss_D: 0.4671 Loss_G: 2.8541 D(x): 0.7765 D(G(z)): 0.1454 / 0.0826
[1/5][1000/1583] Loss_D: 0.5930 Loss_G: 2.3017 D(x): 0.6219 D(G(z)): 0.0160 / 0.1586
[1/5][1050/1583] Loss_D: 0.6707 Loss_G: 1.9861 D(x): 0.6153 D(G(z)): 0.0616 / 0.1831
[1/5][1100/1583] Loss_D: 1.7494 Loss_G: 1.3672 D(x): 0.2737 D(G(z)): 0.0139 / 0.3689
[1/5][1150/1583] Loss_D: 0.8359 Loss_G: 4.4226 D(x): 0.9634 D(G(z)): 0.4748 / 0.0223
[1/5][1200/1583] Loss_D: 0.4016 Loss_G: 2.7747 D(x): 0.8072 D(G(z)): 0.1439 / 0.0862
[1/5][1250/1583] Loss_D: 0.9798 Loss_G: 4.8839 D(x): 0.8770 D(G(z)): 0.4689 / 0.0174
[1/5][1300/1583] Loss_D: 0.5774 Loss_G: 1.0029 D(x): 0.6292 D(G(z)): 0.0387 / 0.4324
[1/5][1350/1583] Loss_D: 3.9349 Loss_G: 5.6348 D(x): 0.9927 D(G(z)): 0.9601 / 0.0086
[1/5][1400/1583] Loss_D: 0.5278 Loss_G: 2.4631 D(x): 0.8286 D(G(z)): 0.2366 / 0.1186
[1/5][1450/1583] Loss_D: 0.5298 Loss_G: 3.8717 D(x): 0.8940 D(G(z)): 0.3002 / 0.0308
[1/5][1500/1583] Loss_D: 0.9329 Loss_G: 4.9853 D(x): 0.9378 D(G(z)): 0.5204 / 0.0100
[1/5][1550/1583] Loss_D: 0.8060 Loss_G: 4.2273 D(x): 0.8572 D(G(z)): 0.4180 / 0.0223
[2/5][0/1583] Loss_D: 0.4088 Loss_G: 2.8834 D(x): 0.7877 D(G(z)): 0.1314 / 0.0757
[2/5][50/1583] Loss_D: 0.6837 Loss_G: 4.4176 D(x): 0.9222 D(G(z)): 0.4080 / 0.0180
[2/5][100/1583] Loss_D: 0.6937 Loss_G: 5.4095 D(x): 0.9424 D(G(z)): 0.4237 / 0.0074
[2/5][150/1583] Loss_D: 0.5881 Loss_G: 2.2198 D(x): 0.6921 D(G(z)): 0.1322 / 0.1504
[2/5][200/1583] Loss_D: 1.1804 Loss_G: 0.6269 D(x): 0.4187 D(G(z)): 0.0914 / 0.5703
[2/5][250/1583] Loss_D: 0.5681 Loss_G: 1.7403 D(x): 0.6868 D(G(z)): 0.1193 / 0.2147
[2/5][300/1583] Loss_D: 0.6584 Loss_G: 1.6990 D(x): 0.6497 D(G(z)): 0.1429 / 0.2208
[2/5][350/1583] Loss_D: 0.4089 Loss_G: 2.0824 D(x): 0.7966 D(G(z)): 0.1401 / 0.1565
[2/5][400/1583] Loss_D: 0.6447 Loss_G: 3.5268 D(x): 0.9059 D(G(z)): 0.3733 / 0.0448
[2/5][450/1583] Loss_D: 0.5230 Loss_G: 2.3954 D(x): 0.7284 D(G(z)): 0.1511 / 0.1172
[2/5][500/1583] Loss_D: 0.6217 Loss_G: 3.6550 D(x): 0.8267 D(G(z)): 0.3058 / 0.0361
[2/5][550/1583] Loss_D: 0.3396 Loss_G: 3.0751 D(x): 0.8333 D(G(z)): 0.1177 / 0.0701
[2/5][600/1583] Loss_D: 1.6282 Loss_G: 0.2064 D(x): 0.2548 D(G(z)): 0.0206 / 0.8319
[2/5][650/1583] Loss_D: 0.9441 Loss_G: 0.8373 D(x): 0.5170 D(G(z)): 0.1225 / 0.4902
[2/5][700/1583] Loss_D: 0.5198 Loss_G: 1.8209 D(x): 0.7082 D(G(z)): 0.1147 / 0.1962
[2/5][750/1583] Loss_D: 0.5248 Loss_G: 2.6813 D(x): 0.8543 D(G(z)): 0.2762 / 0.0875
[2/5][800/1583] Loss_D: 0.8390 Loss_G: 3.8716 D(x): 0.8474 D(G(z)): 0.4422 / 0.0300
[2/5][850/1583] Loss_D: 0.4714 Loss_G: 1.9549 D(x): 0.7254 D(G(z)): 0.0934 / 0.1805
[2/5][900/1583] Loss_D: 0.5351 Loss_G: 2.2515 D(x): 0.7763 D(G(z)): 0.2002 / 0.1348
[2/5][950/1583] Loss_D: 1.1758 Loss_G: 0.6189 D(x): 0.3903 D(G(z)): 0.0350 / 0.5793
[2/5][1000/1583] Loss_D: 1.6380 Loss_G: 4.8972 D(x): 0.9453 D(G(z)): 0.7377 / 0.0129
[2/5][1050/1583] Loss_D: 0.5452 Loss_G: 2.0083 D(x): 0.6861 D(G(z)): 0.1037 / 0.1736
[2/5][1100/1583] Loss_D: 0.9122 Loss_G: 1.0870 D(x): 0.4965 D(G(z)): 0.0523 / 0.3912
[2/5][1150/1583] Loss_D: 0.4635 Loss_G: 2.2746 D(x): 0.7433 D(G(z)): 0.1157 / 0.1346
[2/5][1200/1583] Loss_D: 0.4511 Loss_G: 3.0332 D(x): 0.8438 D(G(z)): 0.2094 / 0.0661
[2/5][1250/1583] Loss_D: 0.7929 Loss_G: 3.0882 D(x): 0.8795 D(G(z)): 0.4372 / 0.0684
[2/5][1300/1583] Loss_D: 0.5828 Loss_G: 3.8692 D(x): 0.8972 D(G(z)): 0.3481 / 0.0279
[2/5][1350/1583] Loss_D: 0.6034 Loss_G: 2.5795 D(x): 0.8330 D(G(z)): 0.3058 / 0.0950
[2/5][1400/1583] Loss_D: 0.8415 Loss_G: 1.4622 D(x): 0.5024 D(G(z)): 0.0437 / 0.2823
[2/5][1450/1583] Loss_D: 0.9165 Loss_G: 5.0441 D(x): 0.9240 D(G(z)): 0.5156 / 0.0094
[2/5][1500/1583] Loss_D: 0.5662 Loss_G: 3.7203 D(x): 0.9114 D(G(z)): 0.3463 / 0.0332
[2/5][1550/1583] Loss_D: 1.2129 Loss_G: 0.9711 D(x): 0.3847 D(G(z)): 0.0397 / 0.4472
[3/5][0/1583] Loss_D: 0.6041 Loss_G: 1.8691 D(x): 0.6160 D(G(z)): 0.0560 / 0.1970
[3/5][50/1583] Loss_D: 0.9960 Loss_G: 4.0044 D(x): 0.9463 D(G(z)): 0.5434 / 0.0271
[3/5][100/1583] Loss_D: 0.5286 Loss_G: 3.5106 D(x): 0.8773 D(G(z)): 0.2938 / 0.0410
[3/5][150/1583] Loss_D: 1.0973 Loss_G: 3.3373 D(x): 0.8999 D(G(z)): 0.5719 / 0.0546
[3/5][200/1583] Loss_D: 0.7099 Loss_G: 2.5499 D(x): 0.7746 D(G(z)): 0.3137 / 0.1010
[3/5][250/1583] Loss_D: 0.5864 Loss_G: 4.3017 D(x): 0.9205 D(G(z)): 0.3509 / 0.0203
[3/5][300/1583] Loss_D: 0.5994 Loss_G: 2.1524 D(x): 0.7074 D(G(z)): 0.1797 / 0.1493
[3/5][350/1583] Loss_D: 0.6667 Loss_G: 2.1432 D(x): 0.7463 D(G(z)): 0.2678 / 0.1483
[3/5][400/1583] Loss_D: 0.8480 Loss_G: 1.2505 D(x): 0.5182 D(G(z)): 0.0739 / 0.3401
[3/5][450/1583] Loss_D: 0.6913 Loss_G: 4.3652 D(x): 0.8600 D(G(z)): 0.3788 / 0.0178
[3/5][500/1583] Loss_D: 0.6187 Loss_G: 2.1059 D(x): 0.6817 D(G(z)): 0.1579 / 0.1503
[3/5][550/1583] Loss_D: 0.5171 Loss_G: 2.3274 D(x): 0.8282 D(G(z)): 0.2470 / 0.1252
[3/5][600/1583] Loss_D: 1.4151 Loss_G: 0.9677 D(x): 0.3264 D(G(z)): 0.0322 / 0.4397
[3/5][650/1583] Loss_D: 0.8069 Loss_G: 1.2564 D(x): 0.5497 D(G(z)): 0.0965 / 0.3491
[3/5][700/1583] Loss_D: 0.5649 Loss_G: 1.9734 D(x): 0.6941 D(G(z)): 0.1331 / 0.1788
[3/5][750/1583] Loss_D: 0.7151 Loss_G: 3.8670 D(x): 0.8666 D(G(z)): 0.3901 / 0.0292
[3/5][800/1583] Loss_D: 0.4973 Loss_G: 1.6224 D(x): 0.7303 D(G(z)): 0.1364 / 0.2307
[3/5][850/1583] Loss_D: 0.7474 Loss_G: 3.4135 D(x): 0.8841 D(G(z)): 0.4275 / 0.0435
[3/5][900/1583] Loss_D: 0.8175 Loss_G: 2.9669 D(x): 0.7281 D(G(z)): 0.3392 / 0.0762
[3/5][950/1583] Loss_D: 0.6323 Loss_G: 3.9118 D(x): 0.9157 D(G(z)): 0.3844 / 0.0272
[3/5][1000/1583] Loss_D: 0.5693 Loss_G: 2.2462 D(x): 0.7589 D(G(z)): 0.2188 / 0.1314
[3/5][1050/1583] Loss_D: 0.5196 Loss_G: 1.7006 D(x): 0.7398 D(G(z)): 0.1571 / 0.2145
[3/5][1100/1583] Loss_D: 0.4900 Loss_G: 2.6172 D(x): 0.8420 D(G(z)): 0.2482 / 0.0934
[3/5][1150/1583] Loss_D: 0.6064 Loss_G: 2.0318 D(x): 0.6238 D(G(z)): 0.0720 / 0.1740
[3/5][1200/1583] Loss_D: 0.4902 Loss_G: 2.3739 D(x): 0.7946 D(G(z)): 0.2050 / 0.1162
[3/5][1250/1583] Loss_D: 0.8279 Loss_G: 1.4117 D(x): 0.5337 D(G(z)): 0.1056 / 0.2995
[3/5][1300/1583] Loss_D: 0.5520 Loss_G: 2.6987 D(x): 0.7354 D(G(z)): 0.1816 / 0.0870
[3/5][1350/1583] Loss_D: 0.7499 Loss_G: 0.9627 D(x): 0.5696 D(G(z)): 0.0977 / 0.4250
[3/5][1400/1583] Loss_D: 0.7783 Loss_G: 1.3820 D(x): 0.5631 D(G(z)): 0.1003 / 0.2933
[3/5][1450/1583] Loss_D: 0.6085 Loss_G: 1.2927 D(x): 0.6398 D(G(z)): 0.0889 / 0.3107
[3/5][1500/1583] Loss_D: 0.4233 Loss_G: 3.3045 D(x): 0.8478 D(G(z)): 0.2092 / 0.0456
[3/5][1550/1583] Loss_D: 0.5902 Loss_G: 2.2044 D(x): 0.7123 D(G(z)): 0.1785 / 0.1400
[4/5][0/1583] Loss_D: 0.5384 Loss_G: 3.0441 D(x): 0.8155 D(G(z)): 0.2505 / 0.0636
[4/5][50/1583] Loss_D: 0.9936 Loss_G: 1.9520 D(x): 0.4985 D(G(z)): 0.0976 / 0.2019
[4/5][100/1583] Loss_D: 0.7261 Loss_G: 1.5587 D(x): 0.5650 D(G(z)): 0.0612 / 0.2602
[4/5][150/1583] Loss_D: 0.6574 Loss_G: 3.5217 D(x): 0.8558 D(G(z)): 0.3572 / 0.0396
[4/5][200/1583] Loss_D: 1.2347 Loss_G: 0.8311 D(x): 0.4937 D(G(z)): 0.2583 / 0.5146
[4/5][250/1583] Loss_D: 0.7518 Loss_G: 1.3787 D(x): 0.5639 D(G(z)): 0.0894 / 0.3058
[4/5][300/1583] Loss_D: 0.5402 Loss_G: 1.6518 D(x): 0.7498 D(G(z)): 0.1854 / 0.2185
[4/5][350/1583] Loss_D: 0.9078 Loss_G: 4.1155 D(x): 0.9122 D(G(z)): 0.5176 / 0.0222
[4/5][400/1583] Loss_D: 1.0291 Loss_G: 4.0787 D(x): 0.8881 D(G(z)): 0.5424 / 0.0237
[4/5][450/1583] Loss_D: 1.4632 Loss_G: 5.7024 D(x): 0.9547 D(G(z)): 0.6969 / 0.0064
[4/5][500/1583] Loss_D: 0.8891 Loss_G: 1.3347 D(x): 0.4875 D(G(z)): 0.0517 / 0.3113
[4/5][550/1583] Loss_D: 1.0928 Loss_G: 4.8654 D(x): 0.9563 D(G(z)): 0.5950 / 0.0131
[4/5][600/1583] Loss_D: 0.6433 Loss_G: 2.2245 D(x): 0.6544 D(G(z)): 0.1477 / 0.1383
[4/5][650/1583] Loss_D: 0.5211 Loss_G: 1.8690 D(x): 0.7063 D(G(z)): 0.1158 / 0.1870
[4/5][700/1583] Loss_D: 0.6324 Loss_G: 3.1306 D(x): 0.8906 D(G(z)): 0.3714 / 0.0569
[4/5][750/1583] Loss_D: 0.8159 Loss_G: 1.3527 D(x): 0.5527 D(G(z)): 0.1203 / 0.3200
[4/5][800/1583] Loss_D: 0.6593 Loss_G: 1.7919 D(x): 0.6748 D(G(z)): 0.1860 / 0.1953
[4/5][850/1583] Loss_D: 1.2315 Loss_G: 0.4262 D(x): 0.3719 D(G(z)): 0.0502 / 0.7017
[4/5][900/1583] Loss_D: 0.6960 Loss_G: 3.9419 D(x): 0.9405 D(G(z)): 0.4247 / 0.0265
[4/5][950/1583] Loss_D: 0.5393 Loss_G: 3.3706 D(x): 0.8730 D(G(z)): 0.2990 / 0.0474
[4/5][1000/1583] Loss_D: 0.4231 Loss_G: 2.1279 D(x): 0.8465 D(G(z)): 0.2013 / 0.1560
[4/5][1050/1583] Loss_D: 0.6721 Loss_G: 3.1959 D(x): 0.8240 D(G(z)): 0.3319 / 0.0546
[4/5][1100/1583] Loss_D: 0.4169 Loss_G: 2.3796 D(x): 0.8698 D(G(z)): 0.2184 / 0.1221
[4/5][1150/1583] Loss_D: 0.7069 Loss_G: 3.4061 D(x): 0.8874 D(G(z)): 0.4009 / 0.0475
[4/5][1200/1583] Loss_D: 0.3838 Loss_G: 2.2136 D(x): 0.8003 D(G(z)): 0.1276 / 0.1418
[4/5][1250/1583] Loss_D: 0.7403 Loss_G: 1.3791 D(x): 0.5549 D(G(z)): 0.0520 / 0.3183
[4/5][1300/1583] Loss_D: 0.5242 Loss_G: 3.6076 D(x): 0.9128 D(G(z)): 0.3212 / 0.0358
[4/5][1350/1583] Loss_D: 0.6135 Loss_G: 2.5221 D(x): 0.7264 D(G(z)): 0.2043 / 0.1114
[4/5][1400/1583] Loss_D: 0.6235 Loss_G: 4.2121 D(x): 0.9077 D(G(z)): 0.3724 / 0.0207
[4/5][1450/1583] Loss_D: 0.5366 Loss_G: 1.9596 D(x): 0.7617 D(G(z)): 0.1961 / 0.1711
[4/5][1500/1583] Loss_D: 0.6522 Loss_G: 2.0985 D(x): 0.7898 D(G(z)): 0.2954 / 0.1569
[4/5][1550/1583] Loss_D: 0.6906 Loss_G: 2.0559 D(x): 0.6155 D(G(z)): 0.1114 / 0.1644
Results¶
Finally, lets check out how we did. Here, we will look at three different results. First, we will see how D and G’s losses changed during training. Second, we will visualize G’s output on the fixed_noise batch for every epoch. And third, we will look at a batch of real data next to a batch of fake data from G.
Loss versus training iteration
Below is a plot of D & G’s losses versus training iterations.

Visualization of G’s progression
Remember how we saved the generator’s output on the fixed_noise batch after every epoch of training. Now, we can visualize the training progression of G with an animation. Press the play button to start the animation.
fig = plt.figure(figsize=(8,8))
plt.axis("off")
ims = [[plt.imshow(np.transpose(i,(1,2,0)), animated=True)] for i in img_list]
ani = animation.ArtistAnimation(fig, ims, interval=1000, repeat_delay=1000, blit=True)
HTML(ani.to_jshtml())
